home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / graphics / aim_xtra.arc / DEMTWOP.AIM < prev    next >
Text File  |  1988-08-17  |  987b  |  61 lines

  1. * @demtwop shows applications of the two-point filters
  2. * adne, adre, sune, sure;
  3. * adne A B pow dir adds part of 
  4. * previous inpixel to current inpixel;
  5. * adre A B pow dir adds part of 
  6. * previous outpixel to current inpixel;
  7. * sune A B pow dir subs part of 
  8. * previous inpixel from current inpixel;
  9. * sure A B pow dir subs part of 
  10. * previous outpixel from current inpixel;
  11. * pow determines part: 0=full, 1=half,,,, 7= 1/128;
  12. * dir determines direction: 0=East, 1= NE,,,, 7=SE;
  13. * adne and sure are each other's inverse;
  14. * adre and sune are each other's inverse;
  15. read trui
  16. his A
  17. sune A B 1 0
  18. his B
  19. sune B C 1 2
  20. his C
  21. sune C B 1 4
  22. his B
  23. sune B C 1 6
  24. his C
  25. sure C B 1 0
  26. his B
  27. sure B C 1 2
  28. his C
  29. sure C B 1 4
  30. his B
  31. sure B C 1 6
  32. cop C D
  33. his D
  34.  * coded!
  35. adne C B 1 6
  36. his B
  37. adne B C 1 4
  38. his C
  39. adne C B 1 2
  40. his B
  41. adne B C 1 0
  42. his C
  43. adre C B 1 6
  44. his B
  45. adre B C 1 4
  46. his C
  47. adre C B 1 2
  48. his B
  49. adre B C 1 0
  50. his C
  51.  * decoded!
  52.      
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.